home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / utility / utilhard / lcdaem18.lha / LCDaemon / Rexx / tst.rexx < prev   
OS/2 REXX Batch file  |  1996-10-13  |  462b  |  17 lines

  1. /*    Demonstration of all REXX commands supported by LCDaemon    */
  2. OPTIONS RESULTS                /*    Use Result for some commands    */
  3. ADDRESS 'LCDAEMON'
  4.  
  5. /*    lcdmessage [time t] [pri n] message    */
  6. say 'Sending test message to LCD...'
  7. lcdmessage time 200 pri 2 "testing..."
  8.  
  9.  
  10. /*    getlines & getcharacters :
  11.             return parameters supplied to LCDaemon at startup    */
  12. getlines
  13. lines=Result
  14. getcharacters
  15. chars=Result
  16. say 'Your LCD is configured for' lines 'lines of' chars 'characters.'
  17.